home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / Snippets / Development Tools & Languages / AEGestalt / UAEServerCommand.h < prev    next >
Encoding:
Text File  |  1995-02-05  |  566 b   |  31 lines  |  [TEXT/MPS ]

  1. //    UAEServerCommand.h
  2. //     Copyright © 1991-92 Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEServerCommand class, used to
  5. //    serve the incoming Apple event with needed information
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __UAESERVERCOMMAND__
  11. #define __UAESERVERCOMMAND__
  12.  
  13. #ifndef __UAEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. DeclareClassDesc(TAEServerCommand);
  18.  
  19. class TAEServerCommand : public TServerCommand
  20. {
  21.  
  22.     DeclareClass(TAEServerCommand);
  23.  
  24. public:
  25.     TAEServerCommand();
  26.     virtual void DoIt();
  27. };
  28.  
  29. #endif 
  30.  
  31.